It generally just messes up the formatting of 'q' key output.
Signed-off-by: Keir Fraser <keir@xensource.com>
#include <asm-xen/balloon.h>
#include <asm-xen/xen-public/memory.h>
+/*#define NETBE_DEBUG_INTERRUPT*/
static void netif_idx_release(u16 pending_idx);
static void netif_page_release(struct page *page);
return notify;
}
+#ifdef NETBE_DEBUG_INTERRUPT
static irqreturn_t netif_be_dbg(int irq, void *dev_id, struct pt_regs *regs)
{
struct list_head *ent;
return IRQ_HANDLED;
}
+#endif
static int __init netback_init(void)
{
netif_xenbus_init();
+#ifdef NETBE_DEBUG_INTERRUPT
(void)bind_virq_to_irqhandler(
VIRQ_DEBUG,
0,
SA_SHIRQ,
"net-be-dbg",
&netif_be_dbg);
+#endif
return 0;
}